1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#![allow(non_camel_case_types, non_snake_case)]

use crate::co;
use crate::decl::*;
use crate::kernel::ffi_types::*;
use crate::ole::privs::*;
use crate::prelude::*;
use crate::vt::*;

/// [`IMFClock`](crate::IMFClock) virtual table.
#[repr(C)]
pub struct IMFClockVT {
	pub IUnknownVT: IUnknownVT,
	pub GetClockCharacteristics: fn(COMPTR, *mut u32) -> HRES,
	pub GetCorrelatedTime: fn(COMPTR, u32, *mut i64, *mut i64) -> HRES,
	pub GetContinuityKey: fn(COMPTR, *mut u32) -> HRES,
	pub GetState: fn(COMPTR, u32, *mut u32) -> HRES,
	pub GetProperties: fn(COMPTR, PVOID) -> HRES,
}

com_interface! { IMFClock: "2eb1e945-18b8-4139-9b1a-d5d584818530";
	/// [`IMFClock`](https://learn.microsoft.com/en-us/windows/win32/api/mfidl/nn-mfidl-imfclock)
	/// COM interface over [`IMFClockVT`](crate::vt::IMFClockVT).
	///
	/// Automatically calls
	/// [`IUnknown::Release`](https://learn.microsoft.com/en-us/windows/win32/api/unknwn/nf-unknwn-iunknown-release)
	/// when the object goes out of scope.
}

impl mf_IMFClock for IMFClock {}

/// This trait is enabled with the `mf` feature, and provides methods for
/// [`IMFClock`](crate::IMFClock).
///
/// Prefer importing this trait through the prelude:
///
/// ```no_run
/// use winsafe::prelude::*;
/// ```
pub trait mf_IMFClock: ole_IUnknown {
	/// [`IMFClock::GetClockCharacteristics`](https://learn.microsoft.com/en-us/windows/win32/api/mfidl/nf-mfidl-imfclock-getclockcharacteristics)
	/// method.
	#[must_use]
	fn GetClockCharacteristics(&self,
	) -> HrResult<co::MFCLOCK_CHARACTERISTICS_FLAG>
	{
		let mut characteristics = co::MFCLOCK_CHARACTERISTICS_FLAG::default();
		ok_to_hrresult(
			unsafe {
				(vt::<IMFClockVT>(self).GetClockCharacteristics)(
					self.ptr(),
					characteristics.as_mut(),
				)
			},
		).map(|_| characteristics)
	}

	/// [`IMFClock::GetContinuityKey`](https://learn.microsoft.com/en-us/windows/win32/api/mfidl/nf-mfidl-imfclock-getcontinuitykey)
	/// method.
	#[must_use]
	fn GetContinuityKey(&self) -> HrResult<u32> {
		let mut ck = u32::default();
		ok_to_hrresult(
			unsafe {
				(vt::<IMFClockVT>(self).GetContinuityKey)(self.ptr(), &mut ck)
			},
		).map(|_| ck)
	}

	/// [`IMFClock::GetCorrelatedTime`](https://learn.microsoft.com/en-us/windows/win32/api/mfidl/nf-mfidl-imfclock-getcorrelatedtime)
	/// method.
	///
	/// Returns the last known clock time (in units of the clock's frequency)
	/// and the system time that corresponds to the last known clock time (in
	/// 100-nanosecond units).
	#[must_use]
	fn GetCorrelatedTime(&self) -> HrResult<(i64, i64)> {
		let (mut clock, mut system) = (i64::default(), i64::default());
		ok_to_hrresult(
			unsafe {
				(vt::<IMFClockVT>(self).GetCorrelatedTime)(
					self.ptr(),
					0,
					&mut clock,
					&mut system,
				)
			},
		).map(|_| (clock, system))
	}

	/// [`IMFClock::GetProperties`](https://learn.microsoft.com/en-us/windows/win32/api/mfidl/nf-mfidl-imfclock-getproperties)
	/// method.
	#[must_use]
	fn GetProperties(&self) -> HrResult<MFCLOCK_PROPERTIES> {
		let mut cp = MFCLOCK_PROPERTIES::default();
		ok_to_hrresult(
			unsafe {
				(vt::<IMFClockVT>(self).GetProperties)(
					self.ptr(),
					&mut cp as *mut _ as _,
				)
			},
		).map(|_| cp)
	}

	/// [`IMFClock::GetState`](https://learn.microsoft.com/en-us/windows/win32/api/mfidl/nf-mfidl-imfclock-getstate)
	/// method.
	#[must_use]
	fn GetState(&self) -> HrResult<co::MFCLOCK_STATE> {
		let mut state = co::MFCLOCK_STATE::default();
		ok_to_hrresult(
			unsafe {
				(vt::<IMFClockVT>(self).GetState)(self.ptr(), 0, state.as_mut())
			},
		).map(|_| state)
	}
}